From: Richard M. Stallman Date: Sat, 22 May 2004 21:53:38 +0000 (+0000) Subject: (sentence-end): Match unicode curly quotes as a close quote. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1~1^2~22344 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=49ac2b863272b1e8861a58261b0d9fed21b47166;p=emacs.git (sentence-end): Match unicode curly quotes as a close quote. --- diff --git a/lisp/textmodes/paragraphs.el b/lisp/textmodes/paragraphs.el index a86be8646c9..1b2628760e1 100644 --- a/lisp/textmodes/paragraphs.el +++ b/lisp/textmodes/paragraphs.el @@ -171,7 +171,7 @@ followed by two spaces, unless it's inside some sort of quotes or parenthesis. See Info node `Sentences'." (or sentence-end (concat (if sentence-end-without-period "\\w \\|") - "\\([.?!][]\"')}]*" + "\\([.?!][]\"'\xd0c9)}]*" (if sentence-end-double-space "\\($\\| $\\|\t\\| \\)" "\\($\\|[\t ]\\)") "\\|[" sentence-end-without-space "]+\\)"